home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / spcxd.c < prev    next >
C/C++ Source or Header  |  1996-03-02  |  2KB  |  73 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* spcxd.c */
  20. /* PCXDecode filter */
  21. #include "stdio_.h"        /* includes std.h */
  22. #include "memory_.h"
  23. #include "strimpl.h"
  24. #include "spcxx.h"
  25.  
  26. /* ------ PCXDecode ------ */
  27.  
  28. /* Refill the buffer */
  29. private int
  30. s_PCXD_process(stream_state *st, stream_cursor_read *pr,
  31.   stream_cursor_write *pw, bool last)
  32. {    register const byte *p = pr->ptr;
  33.     register byte *q = pw->ptr;
  34.     const byte *rlimit = pr->limit;
  35.     byte *wlimit = pw->limit;
  36.     int status = 0;
  37.  
  38.     while ( p < rlimit )
  39.     {    int b = *++p;
  40.         if ( b < 0xc0 )
  41.         {    if ( q >= wlimit )
  42.             {    --p;
  43.                 status = 1;
  44.                 break;
  45.             }
  46.             *++q = b;
  47.         }
  48.         else if ( p >= rlimit )
  49.           {    --p;
  50.             break;
  51.           }
  52.         else if ( (b -= 0xc0) > wlimit - q )
  53.         {    --p;
  54.             status = 1;
  55.             break;
  56.         }
  57.         else
  58.         {    memset(q + 1, *++p, b);
  59.             q += b;
  60.         }
  61.     }
  62.     pr->ptr = p;
  63.     pw->ptr = q;
  64.     return status;
  65. }
  66.  
  67. #undef ss
  68.  
  69. /* Stream template */
  70. const stream_template s_PCXD_template =
  71. {    &st_stream_state, NULL, s_PCXD_process, 2, 63
  72. };
  73.